This is the default user project folder.
An example named "simple_bus" is also shipped with
SystemC_Win that is located in this folder.
"simple_bus" example is modified to be compatible with borland free compiler.
The modification is in module with multiple inheritance definition.
Due to a bug in borland compiler we should define "sc_module" class as 
the first parent.
for example:

class simple_bus_fast_mem			class simple_bus_fast_mem
  : public simple_bus_slave_if	 ==========>	  : public sc_module
  , public sc_module			  	  , public simple_bus_slave_if		
{						{
.						.
.						.	

};						};					  
					  